home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / ths103.zip / DATETIME.TSF < prev    next >
Text File  |  1993-01-02  |  374b  |  20 lines

  1. ;
  2. ; This script instructs THESEUS to search between two dates and hours
  3. ;
  4. ;
  5. ; call :  THESEUS   FirstDate  FirstTime SecondDate SecondTime
  6. ;
  7. ; example:  THESEUS @DATETIME.TSF 12/07/1992 05:00p  12/08/1992 10:00a
  8. ;
  9.   PAUSE
  10.   explain
  11.   totals
  12.   FileHeader
  13.  
  14.  (date = @1  and  time >= @2 )
  15.  or
  16.  (date > @1  and  date < @3)
  17.  or
  18.  (date = @3  and  time <= @4 )
  19.  
  20.